home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Super CD
/
Super CD.iso
/
kids
/
barbe
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1990-10-17
|
1KB
|
38 lines
Echo off
cls
Echo **************************************************************
Echo * *
Echo * LEARN TO COUNT *
Echo * INSTALLATION *
Echo **************************************************************
Echo.
Echo.
if %1a==a goto Help2
if %1==c: goto Install
if %1==C: goto Install
if %1==d: goto Install
if %1==D: goto Install
goto Help2
:Install
Echo Please wait, while files are copied....
md %1\COUNTING
COPY \*.* %1\COUNTING
CLS
goto AllDone
:Help2
Echo To install LEARN TO COUNT on your hard drive type INSTALL
Echo followed by the hard disk drive letter. For example:
Echo.
Echo install [x]: [x] being your hard disk drive letter.
Echo (don't forget the colon :)
goto Exit
:AllDone
Echo INSTALLATION COMPLETE
ECHO.
ECHO.
ECHO.
pause
goto exit
:Exit